home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / raytrace / rayslide / rayslide.lha / ray-slides / bw / Makefile
Encoding:
Makefile  |  1992-09-14  |  688 b   |  39 lines

  1. FILES = ap1.PS ap2.PS bigpac.PS camera.Ps depth.PS depthcolor.PS diff.PS \
  2.     front.PS left.PS mancyl.PS right.PS sphere.PS
  3. #
  4. #    General case for making PostScript files
  5. #
  6.  
  7. all: $(FILES)
  8.  
  9. #
  10. #    depth.ps is black and white for both
  11. #
  12.  
  13. depth.PS: ../ray/depth.ps
  14.     cp ../ray/depth.ps depth.PS
  15.  
  16. %.PS: ../ray/%.rle
  17.     rletops -c 0 -h 1 -s ../ray/%.rle > %.PS
  18.  
  19. #
  20. #    Image on front slide is 2.1inches, not 1inch like the others
  21. #
  22.  
  23. bigpac.PS: ../ray/pacbw.rle
  24.     rletops -c 0 -h 2.1 -s ../ray/pacbw.rle > bigpac.PS
  25.  
  26. #
  27. #    camera.Ps is an idraw document, stored in PostScript format.
  28. #
  29.  
  30. camera.Ps: ../ray/camera.bw.ps
  31.     cp ../ray/camera.bw.ps camera.Ps
  32.  
  33. #
  34. #    Clean up
  35. #
  36.  
  37. clean:
  38.     rm -f *.PS *.Ps *.ps *.BAK *.CKP
  39.